home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / gpen32k / source.exe / LIB / OSRC / OEGBPUTZ.C < prev    next >
Text File  |  1993-02-26  |  552b  |  24 lines

  1. /************************************************************
  2. *   共通一般ライブラリー                OKOME System 2      *
  3. ************************************************************/
  4.  
  5. #include    <EGB.H>
  6. #include    <normlib.h>
  7.  
  8. extern char work[];
  9.  
  10. void egbputZ(int x, int y, int x2, int y2, int sx, int sy, char *pat)
  11. {
  12.     char pa[64];
  13.     DWORD(pa) = (int)pat;
  14.     WORD(pa+4) = 0x14;
  15.     WORD(pa+6) = x;
  16.     WORD(pa+8) = y;
  17.     WORD(pa+0xA) = x2;
  18.     WORD(pa+0xC) = y2;
  19.     WORD(pa+0xE) = sx;
  20.     WORD(pa+0x10) = sy;
  21.     EGB_putBlockZoom( work, 0, pa );
  22. }
  23.  
  24.